home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / openoffice / program / unopkg < prev    next >
Text File  |  2009-10-23  |  3KB  |  114 lines

  1. #!/bin/sh
  2. #*************************************************************************
  3. #
  4. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  5. # Copyright 2008 by Sun Microsystems, Inc.
  6. #
  7. # OpenOffice.org - a multi-platform office productivity suite
  8. #
  9. # $RCSfile: unopkg.sh,v $
  10. #
  11. # $Revision: 1.14 $
  12. #
  13. # This file is part of OpenOffice.org.
  14. #
  15. # OpenOffice.org is free software: you can redistribute it and/or modify
  16. # it under the terms of the GNU Lesser General Public License version 3
  17. # only, as published by the Free Software Foundation.
  18. #
  19. # OpenOffice.org is distributed in the hope that it will be useful,
  20. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  22. # GNU Lesser General Public License version 3 for more details
  23. # (a copy is included in the LICENSE file that accompanied this code).
  24. #
  25. # You should have received a copy of the GNU Lesser General Public License
  26. # version 3 along with OpenOffice.org.  If not, see
  27. # <http://www.openoffice.org/license.html>
  28. # for a copy of the LGPLv3 License.
  29. #
  30. #*************************************************************************
  31.  
  32. # enable file locking
  33. SAL_ENABLE_FILE_LOCKING=1
  34. export SAL_ENABLE_FILE_LOCKING
  35.  
  36. # resolve installation directory
  37. sd_cwd="`pwd`"
  38. if [ -h "$0" ] ; then
  39.     sd_basename=`basename "$0"`
  40.      sd_script=`ls -l "$0" | sed "s/.*${sd_basename} -> //g"` 
  41.     cd "`dirname "$0"`"
  42.     cd "`dirname "$sd_script"`"
  43. else
  44.     cd "`dirname "$0"`"
  45. fi
  46. sd_prog=`pwd`
  47. cd "$sd_cwd"
  48.  
  49. isshared=0
  50. for arg in $@
  51. do
  52. if [ "$arg" = "--shared" ]; then 
  53.     isshared=1
  54. fi
  55. done
  56. if [ $isshared -eq 1 ]; then
  57.     echo $@ | grep -q env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY
  58.     if [ $? -ne 0 ]; then
  59.         set -- $@ '-env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1'
  60.     fi
  61.     echo $@ | grep -q env:UNO_JAVA_JFW_INSTALL_DATA
  62.     if [ $? -ne 0 -a -w $sd_prog/../share/config/javasettingsunopkginstall.xml ]; then
  63.         set -- $@ '-env:UNO_JAVA_JFW_INSTALL_DATA=$$ORIGIN/../share/config/javasettingsunopkginstall.xml'
  64.     fi
  65.     echo $@ | grep -q env:UserInstallation
  66.     if [ $? -ne 0 ]; then
  67.         INSTDIR=`/bin/mktemp -d -t unoinstall.XXXXXX`
  68.         set -- $@ '-env:UserInstallation=file://'$INSTDIR
  69.     fi
  70. fi
  71.  
  72. #collect all bootstrap variables specified on the command line
  73. #so that they can be passed as arguments to javaldx later on
  74. for arg in $@
  75. do
  76.   case "$arg" in
  77.        -env:*) BOOTSTRAPVARS=$BOOTSTRAPVARS" ""$arg";;
  78.   esac
  79. done
  80.  
  81. # extend the ld_library_path for java: javaldx checks the sofficerc for us
  82. if [ -x "$sd_prog/../basis-link/ure-link/bin/javaldx" ] ; then
  83.     my_path=`"$sd_prog/../basis-link/ure-link/bin/javaldx" $BOOTSTRAPVARS \
  84.         "-env:INIFILENAME=vnd.sun.star.pathname:$sd_prog/redirectrc"`
  85.     if [ -n "$my_path" ] ; then
  86.         LD_LIBRARY_PATH=$my_path${LD_LIBRARY_PATH+:$LD_LIBRARY_PATH}
  87.         export LD_LIBRARY_PATH
  88.     fi
  89. fi
  90.  
  91. unset XENVIRONMENT
  92.  
  93. # uncomment line below to disable anti aliasing of fonts
  94. # SAL_ANTIALIAS_DISABLE=true; export SAL_ANTIALIAS_DISABLE
  95.  
  96. # uncomment line below if you encounter problems starting soffice on your system
  97. # SAL_NO_XINITTHREADS=true; export SAL_NO_XINITTHREADS
  98.  
  99. # Set PATH so that crash_report is found:
  100. PATH=$sd_prog${PATH+:$PATH}
  101. export PATH
  102.  
  103. export PYTHONPATH="/usr/lib/openoffice/basis3.1/program"
  104.  
  105.  
  106.  
  107. # execute binary
  108. "$sd_prog/unopkg.bin" "$@" \
  109.     "-env:INIFILENAME=vnd.sun.star.pathname:$sd_prog/redirectrc"
  110. if [ -n "$INSTDIR" ]; then
  111.    rm -rf $INSTDIR
  112. fi
  113.